home *** CD-ROM | disk | FTP | other *** search
/ Bridges Cornell Heights - A Virtual Tour / Bridges - Cornell Heights - A Virtual Tour (Bridges Cornell Heights)(2006).iso / mac / assets / tour-cd.swf / scripts / DefineButton2_138 / BUTTONCONDACTION on(release).as
Text File  |  2005-12-28  |  171b  |  13 lines

  1. on(release){
  2.    if(soundstatus == "on")
  3.    {
  4.       gotoAndStop("soundoff");
  5.       play();
  6.    }
  7.    else
  8.    {
  9.       gotoAndStop("soundon");
  10.       play();
  11.    }
  12. }
  13.